From a03a01efdd9592a3dd83334f0720852bb23da6c2 Mon Sep 17 00:00:00 2001
From: MatthewOwens <matthew@owens.tech>
Date: Mon, 20 Jul 2020 19:00:00 +0100
Subject: [PATCH] ensured that all font scaling is relative

---
 style.css | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/style.css b/style.css
index 1a5cc39..078981e 100644
--- a/style.css
+++ b/style.css
@@ -1,6 +1,6 @@
 body {
 	font-family:Monaco,Lucidia Console,Liberation Mono, DejaVu Sans Mono, serif;
-	font-size:100%;
+	font-size: 1vmax;
 	background-color: #1c1c1c;
 	color: #aaaaaa;
 	overflow-y:scroll;
@@ -22,7 +22,7 @@ header {
 }
 
 header h1 {
-	font-size: 3.0em;
+	font-size: 3vmax;
 }
 
 .nav{
-- 
2.20.1